home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Programare / magiccd / mcdbc111t.exe / %MAINDIR% / C++ Builder / Unit1.h < prev   
Encoding:
C/C++ Source or Header  |  2004-03-08  |  2.8 KB  |  82 lines

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef Unit1H
  4. #define Unit1H
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include <CheckLst.hpp>
  11. #include <ComCtrls.hpp>
  12. #include <ExtCtrls.hpp>
  13. #include <Dialogs.hpp>
  14. #include <Menus.hpp>
  15. #include <FileCtrl.hpp>
  16. //---------------------------------------------------------------------------
  17. class TForm1 : public TForm
  18. {
  19. __published:    // IDE-managed Components
  20.         TPanel *Panel1;
  21.         TProgressBar *dbs;
  22.         TLabel *Label2;
  23.         TTimer *Timer1;
  24.         TProgressBar *pb;
  25.         TProgressBar *scs;
  26.         TLabel *lSize;
  27.         TMemo *Memo1;
  28.         TPopupMenu *PopupMenu1;
  29.         TMenuItem *AddItem1;
  30.         TMenuItem *DeleteItem1;
  31.         TPanel *Panel2;
  32.         TPanel *Panel4;
  33.         TLabel *Label1;
  34.         TComboBox *cbDrives;
  35.         TCheckListBox *files;
  36.         TCheckBox *cSavePath;
  37.         TCheckBox *cImportSession;
  38.         TSplitter *Splitter1;
  39.         TFileListBox *lbFiles;
  40.         TDirectoryListBox *lbDir;
  41.         TSplitter *Splitter2;
  42.         TPanel *Panel3;
  43.         TButton *bErase;
  44.         TButton *bEject;
  45.         TButton *bLoad;
  46.         TButton *bBurn;
  47.         TPanel *Panel5;
  48.         TDriveComboBox *DriveComboBox1;
  49.         TButton *Button1;
  50.         TSplitter *Splitter3;
  51.         TProgressBar *ProgressBar1;
  52.         TOpenDialog *od;
  53.         TPopupMenu *PopupMenu2;
  54.         TMenuItem *ClearAll1;
  55.         void __fastcall FormCreate(TObject *Sender);
  56.         void __fastcall cbDrivesChange(TObject *Sender);
  57.         void __fastcall bEjectClick(TObject *Sender);
  58.         void __fastcall bBurnClick(TObject *Sender);
  59.         void __fastcall Timer1Timer(TObject *Sender);
  60.         void __fastcall bEraseClick(TObject *Sender);
  61.         void __fastcall bLoadClick(TObject *Sender);
  62.         void __fastcall filesDragDrop(TObject *Sender, TObject *Source,
  63.           int X, int Y);
  64.         void __fastcall filesDragOver(TObject *Sender, TObject *Source,
  65.           int X, int Y, TDragState State, bool &Accept);
  66.         void __fastcall DeleteItem1Click(TObject *Sender);
  67.         void __fastcall Button1Click(TObject *Sender);
  68.         void __fastcall ClearAll1Click(TObject *Sender);
  69.         void __fastcall Panel4Click(TObject *Sender);
  70. private:    // User declarations
  71.  
  72. public:        // User declarations
  73.         void static __stdcall OnEraseDone(BOOL, void *);
  74.         void static __stdcall OnWriteDone(BOOL, void *);
  75.  
  76.         __fastcall TForm1(TComponent* Owner);
  77. };
  78. //---------------------------------------------------------------------------
  79. extern PACKAGE TForm1 *Form1;
  80. //---------------------------------------------------------------------------
  81. #endif
  82.